home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / magicwb / install < prev    next >
Text File  |  1980-06-28  |  19KB  |  479 lines

  1. failat 21
  2.  
  3. if not exists XEN-Icons
  4.   echo "*n Please change current directory to that of MagicWB *n or start the installation from the Workbench!*n"
  5.   quit
  6. endif
  7.  
  8. echo "*n*e[1;32m _________________________________________________________________________"
  9. echo " *e[43m                                                                         *e[0m"
  10. echo " *e[0;32;43m              Welcome to the INSTALLATION of MagicWB v1.2p*e[1m               *e[0m"
  11. echo " *e[1;4;43m                                                                         *e[0m"
  12. echo "*n*n This Installation will automatically install *e[32mMagicWB*e[0m to your SYS:"
  13. echo " directory. Don't be afraid; the only things that will be replaced"
  14. echo " (overwritten) by this installation are the old (and ugly-looking) Icons"
  15. echo " from Commodore. These old Icons will be replaced by far better-looking"
  16. echo " Icons (called XEN-Icons) from this *e[32mMagicWB*e[0m-Package.*n"
  17. echo " MagicWB1.2p now DOES PRESERVE your old tooltypes, stack and default"
  18. echo " tool settings! So (for your convenience) your personal modifications"
  19. echo " within the Icons WILL NOT be overwritten by this installation. MagicWB"
  20. echo " just REPLACES the IMAGES of your old Icons with those magic images"
  21. echo " from MagicWB.*n"
  22. echo " After all, you do have the old Icons by Commodore on your original"
  23. echo " Installation Disks. Therefore you won't lose anything! So, if you dislike"
  24. echo " the XEN-Icons - what I really cannot believe - then you can still replace"
  25. echo " them with the old ones by re-installing the Workbench again.*n"
  26. echo noline "   [Return]"
  27. set > nil: Return ?
  28. echo "*e[1;1H*e[J"
  29. echo "*n Second, this installation will install THREE new FONTS to your FONTS-"
  30. echo " Drawer called 'XEN', 'XHelvetica' and 'XCourier'.*n"
  31. echo " Third, your font.prefs in the ENVARC:SYS directory will be changed to use"
  32. echo " the three new installed fonts (you can of course reconfigure these settings"
  33. echo " to fit your own personal taste; NOTHING important will be deleted).*n"
  34. echo " Fourth, your palette.ilbm will be changed to fit the XEN-Icons: You will"
  35. echo " need at least 8 colors. This new palette will NOT change the standard"
  36. echo " colors that you are probably using at the moment. These first four"
  37. echo " standard colors are Gray, Black, White and Blue. So, you will have the"
  38. echo " same standard-looking Workbench with its original colors (again: nothing"
  39. echo " will get lost).*n"
  40. echo noline "   [Return]"
  41. set > nil: Return ?
  42. echo "*e[1;1H*e[J"
  43. echo "*n IMPORTANT: The only thing you have to do is to change SCREENMODE-PREFS to"
  44. echo " a proportional resolution with 8 COLORS (e.g. HiRes-Interlaced 8 Colors)"
  45. echo " after this installation is finished!*n"
  46. echo " Finally, TWO Background-Patterns will be installed in the SYS:Prefs/Patterns"
  47. echo " directory (will be created). By default these patterns are 'Marble_CLASSIC'"
  48. echo " and 'MarbleDark'. After this installation you can manually copy all patterns"
  49. echo " or just your desired ones to this directory and configure them via the"
  50. echo " WBPattern-Prefs (only 3.x users) or the program 'NickPrefs' (for 2.x users;"
  51. echo " to be found in the 'MagicWB/Patterns/NickPrefs' drawer of this package).*n"
  52. echo " That's all! You can now proceed with this installation and in a few minutes"
  53. echo " you will be the lucky user of *e[32mMagicWB*e[0m! This installation will be inter-"
  54. echo " active, which means that you will be asked certain questions where you"
  55. echo " can influence this installation.*n"
  56. echo noline " Start the installation? "
  57.  
  58. set > nil: InpVar ?
  59.  
  60. if $InpVar eq "ja"
  61.   skip Start
  62. endif
  63.  
  64. if $InpVar eq "j"
  65.   skip Start
  66. endif
  67.  
  68. if $InpVar eq "y"
  69.   skip Start
  70. endif
  71.  
  72. if $InpVar eq "yes"
  73.   skip Start
  74. endif
  75.  
  76. echo "*n*e[32m Installation aborted! I hope I see you again..."
  77. quit
  78.  
  79.  
  80. lab Start
  81.  
  82. echo "*e[1;1H*e[J"
  83. echo " Installation in progress...*n"
  84.  
  85. assign Magic: ""
  86. resident IU update/IconUpdate pure
  87. if warn
  88.   echo "*e[32m Installation aborted due to failure of the 'resident' command!*n Please check if you have got the original 'resident' command in C:*n"
  89.   wait 8
  90.   quit
  91. endif
  92.  
  93.  
  94. echo noline " Installing XEN-Icons to SYS:System..."
  95. list > ram:MWB SYS:System/#?.info lformat "IU > NIL: tsd XEN-Icons/System/%n SYS:System/%n"
  96. failat 21
  97. execute > NIL: ram:MWB
  98.  
  99. if exists SYS:System/DiskCopy.info
  100.   delete SYS:System/DiskCopy.info  ; Icon was redundant, without function!
  101. endif
  102. if exists SYS:System/CLI.info
  103.   delete SYS:System/CLI.info  ; Icon was redundant.
  104. endif
  105. echo ".............*e[33mDONE*e[0m"
  106.  
  107.  
  108. echo noline " Installing XEN-Icons to SYS:Utilities..."
  109. list > ram:MWB SYS:Utilities/#?.info lformat "IU > NIL: tsdc XEN-Icons/Utilities/%n SYS:Utilities/%n"
  110. failat 21
  111. execute > NIL: ram:MWB
  112. echo "..........*e[33mDONE*e[0m"
  113.  
  114.  
  115. echo noline " Installing XEN-Icons to SYS:Tools..."
  116. list > ram:MWB SYS:Tools/#?.info lformat "IU > NIL: tsdw XEN-Icons/Tools/%n SYS:Tools/%n"
  117. failat 21
  118. execute > NIL: ram:MWB
  119. echo "..............*e[33mDONE*e[0m"
  120.  
  121.  
  122. echo noline " Installing XEN-Icons to SYS:Tools/Commodities..."
  123. list > ram:MWB SYS:Tools/Commodities/#?.info lformat "IU > NIL: tsd XEN-Icons/Tools/Commodities/%n SYS:Tools/Commodities/%n"
  124. failat 21
  125. execute > NIL: ram:MWB
  126. echo "..*e[33mDONE*e[0m"
  127.  
  128. echo noline " Installing XEN-Icons to SYS:WBStartup..."
  129. list > ram:MWB SYS:WBStartup/#?.info lformat "IU > NIL: tsdc XEN-Icons/Tools/Commodities/%n SYS:WBStartup/%n"
  130. failat 21
  131. execute > NIL: ram:MWB
  132. echo "..........*e[33mDONE*e[0m"
  133.  
  134.  
  135. if exists SYS:Devs/DataTypes
  136.   echo noline " Installing XEN-Icons to SYS:Devs/DataTypes..."
  137.   list > ram:MWB SYS:Devs/DataTypes/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/DataTypes/def_DataType.info %s%s"
  138.   failat 21
  139.   execute > NIL: ram:MWB
  140.   if exists sys:Storage/DataTypes
  141.     list > ram:MWB SYS:Storage/DataTypes/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/DataTypes/def_DataType.info %s%s"
  142.     execute > NIL: ram:MWB
  143.     copy > NIL: XEN-Icons/Devs/DataTypes.info SYS:storage
  144.   endif
  145.   copy > NIL: XEN-Icons/Devs/DataTypes.info SYS:Devs
  146.   echo ".....*e[33mDONE*e[0m"
  147. endif
  148.  
  149.  
  150. echo noline " Installing XEN-Icons to SYS:Devs/DOSDrivers..."
  151. list > ram:MWB SYS:Devs/DOSDrivers/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/DOSDrivers/def_DOSDriver.info %s%s"
  152. failat 21
  153. execute > NIL: ram:MWB
  154.  
  155. list > ram:MWB SYS:Devs/DOSDrivers/#?0.info lformat "IU > NIL: dcs XEN-Icons/Devs/DOSDrivers/def_DOSDriver0.info %s%s"
  156. execute > NIL: ram:MWB
  157. list > ram:MWB SYS:Devs/DOSDrivers/#?1.info lformat "IU > NIL: dcs XEN-Icons/Devs/DOSDrivers/def_DOSDriver1.info %s%s"
  158. execute > NIL: ram:MWB
  159. list > ram:MWB SYS:Devs/DOSDrivers/#?2.info lformat "IU > NIL: dcs XEN-Icons/Devs/DOSDrivers/def_DOSDriver2.info %s%s"
  160. execute > NIL: ram:MWB
  161.  
  162. if exists sys:Storage/DOSDrivers
  163.   list > ram:MWB SYS:Storage/DOSDrivers/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/DOSDrivers/def_DOSDriver.info %s%s"
  164.   execute > NIL: ram:MWB
  165.  
  166.   list > ram:MWB SYS:Storage/DOSDrivers/#?0.info lformat "IU > NIL: dcs XEN-Icons/Devs/DOSDrivers/def_DOSDriver0.info %s%s"
  167.   execute > NIL: ram:MWB
  168.   list > ram:MWB SYS:Storage/DOSDrivers/#?1.info lformat "IU > NIL: dcs XEN-Icons/Devs/DOSDrivers/def_DOSDriver1.info %s%s"
  169.   execute > NIL: ram:MWB
  170.   list > ram:MWB SYS:Storage/DOSDrivers/#?2.info lformat "IU > NIL: dcs XEN-Icons/Devs/DOSDrivers/def_DOSDriver2.info %s%s"
  171.   execute > NIL: ram:MWB
  172.  
  173.   copy > NIL: XEN-Icons/Devs/DOSDrivers.info SYS:storage
  174. endif
  175.  
  176. copy > NIL: XEN-Icons/Devs/DOSDrivers.info SYS:Devs
  177. echo "....*e[33mDONE*e[0m"
  178.  
  179.  
  180. echo noline " Installing XEN-Icons to SYS:Devs/Keymaps..."
  181. list > ram:MWB SYS:Devs/Keymaps/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/Keymaps/def_Keymap.info %s%s"
  182. failat 21
  183. execute > NIL: ram:MWB
  184. if exists sys:Storage/Keymaps
  185.   list > ram:MWB SYS:Storage/Keymaps/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/Keymaps/def_Keymap.info %s%s"
  186.   execute > NIL: ram:MWB
  187.   copy > NIL: XEN-Icons/Devs/Keymaps.info SYS:storage
  188. endif
  189. copy > NIL: XEN-Icons/Devs/Keymaps.info SYS:Devs
  190. echo ".......*e[33mDONE*e[0m"
  191.  
  192.  
  193. echo noline " Installing XEN-Icons to SYS:Devs/Monitors..."
  194. list > ram:MWB SYS:Devs/Monitors/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/Monitors/def_Monitor.info %s%s"
  195. failat 21
  196. execute > NIL: ram:MWB
  197. if exists sys:Storage/Monitors
  198.   list > ram:MWB SYS:Storage/Monitors/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/Monitors/def_Monitor.info %s%s"
  199.   execute > NIL: ram:MWB
  200.   copy > NIL: XEN-Icons/Devs/Monitors.info SYS:storage
  201. endif
  202. copy > NIL: XEN-Icons/Devs/Monitors.info SYS:Devs
  203. echo "......*e[33mDONE*e[0m"
  204.  
  205.  
  206. echo noline " Installing XEN-Icons to SYS:Devs/Printers..."
  207. list > ram:MWB SYS:Devs/Printers/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/Printers/def_Printer.info %s%s"
  208. failat 21
  209. execute > NIL: ram:MWB
  210. if exists sys:Storage/Printers
  211.   list > ram:MWB SYS:Storage/Printers/#?.info lformat "IU > NIL: tsd XEN-Icons/Devs/Printers/def_Printer.info %s%s"
  212.   execute > NIL: ram:MWB
  213.   copy > NIL: XEN-Icons/Devs/Printers.info SYS:storage
  214. endif
  215. copy > NIL: XEN-Icons/Devs/Printers.info SYS:Devs
  216. echo "......*e[33mDONE*e[0m"
  217.  
  218.  
  219. echo noline " Installing XEN-Icons to SYS:Prefs..."
  220. list > ram:MWB SYS:Prefs/#?.info lformat "IU > NIL: tsd XEN-Icons/Prefs/%n SYS:Prefs/%n"
  221. failat 21
  222. execute > NIL: ram:MWB
  223. copy > NIL: XEN-Icons/Prefs/env-archive/sys/def_Drawer.info TO SYS:Prefs/Presets.info
  224. echo "..............*e[33mDONE*e[0m"
  225.  
  226.  
  227. echo noline " Installing XEN-DEFAULT-Icons to ENVARC:..."
  228. copy > NIL: XEN-Icons/Prefs/Env-Archive/Sys/~(Palette3.0|WBPattern.prefs) TO ENVARC:Sys all
  229. echo "........*e[33mDONE*e[0m"
  230.  
  231.  
  232. echo noline " Updating old Drawer-Icons in SYS:..."
  233. list > ram:MWB SYS: dirs lformat "if exists *"SYS:%n.info*" *nIU > NIL: cw XEN-Icons/Prefs/Env-Archive/Sys/def_Drawer.info *"SYS:%n.info*" *nendif*n"
  234. execute > NIL: ram:MWB
  235. delete > NIL: ram:MWB
  236. if exists SYS:Trashcan.info
  237.   IU > NIL: cw XEN-Icons/Prefs/Env-Archive/Sys/def_trashcan.info SYS:Trashcan.info
  238. endif
  239. echo "..............*e[33mDONE*e[0m"
  240.  
  241.  
  242. version > NIL: exec.library 39
  243. if warn
  244.   skip Continue
  245. endif
  246. echo "*n Kickstart 3.x detected:"
  247. echo noline " Installing Palette.prefs and WBPattern.prefs for Kickstart 3.x..."
  248. delete > NIL: envarc:sys/sysfont.prefs ; file redundant for 3.x
  249. delete > NIL: envarc:sys/wbfont.prefs  ; file redundant for 3.x
  250. copy > NIL: XEN-Icons/Prefs/Env-Archive/Sys/Palette3.0 ENVARC:Sys/Palette.prefs
  251. copy > NIL: XEN-Icons/Prefs/Env-Archive/Sys/WBPattern.prefs ENVARC:Sys
  252. echo "..*e[33mDONE*e[0m*n"
  253.  
  254.  
  255. lab Continue
  256.  
  257. echo " Installing XEN-SPECIAL-Icons:"
  258. echo noline "     Installing Preset-Default-Icon to SYS:Prefs/Presets..."
  259. copy > NIL: XEN-Icons/SPECIAL/Preset.info SYS:Prefs/Presets
  260. echo ".........*e[33mDONE*e[0m"
  261.  
  262.  
  263. echo noline "     Installing RAM-Icon to S:RAM.info......"
  264. if exists SYS:S/RAM.info
  265.   IU > NIL: dcw XEN-Icons/SPECIAL/RAM.info SYS:S/RAM.info
  266. else
  267.   copy > NIL: XEN-Icons/SPECIAL/RAM.info SYS:S
  268. endif
  269. if exists SYS:S/User-Startup
  270.   search > NIL: SYS:S/User-Startup SYS:S/RAM.info
  271.   if warn
  272.     join XEN-Icons/SPECIAL/RAM-Script SYS:S/User-Startup TO RAM:User-Startup
  273.     copy RAM:User-Startup SYS:S
  274.     delete > NIL: RAM:User-Startup
  275.   endif
  276. else
  277.   copy > NIL: XEN-Icons/SPECIAL/RAM-Script TO SYS:S/User-Startup
  278. endif
  279. echo "........................*e[33mDONE*e[0m"
  280.  
  281.  
  282. if exists SYS:Disk.info
  283.   echo noline "*n Installing HardDisk-Icon to SYS:..."
  284.   IU > NIL: dcw XEN-Icons/SPECIAL/HD.info SYS:Disk.info
  285.   echo "................................*e[33mDONE*e[0m*n"
  286. else
  287.   lab Path
  288.   echo noline "*n Please enter the PATH where the HardDisk-Icon should*n be installed (i.e. 'DH0:'): "
  289.   set > NIL: Path ?
  290.   if > NIL: not exists $Path
  291.     echo " Wrong path, path does not exist! Try again...*n"
  292.     skip back path
  293.   endif
  294.   echo noline " Installing HardDisk-Icon to $Path..."
  295.   cd $Path
  296.   IU > NIL: dcw Magic:XEN-Icons/SPECIAL/HD.info Disk.info
  297.   cd Magic:
  298.   echo "..*e[33mDONE*e[0m*n"
  299. endif
  300.  
  301.  
  302. lab HardDisk
  303.  
  304. echo noline " Do you want to have the HardDisk-Icon installed to other partitions? "
  305. set > nil: HardDisk ?
  306. echo "*e[1;1H*e[J"
  307. if $HardDisk eq "ja"
  308.   skip InstallHardDisk
  309. endif
  310. if $HardDisk eq "j"
  311.   skip InstallHardDisk
  312. endif
  313. if $HardDisk eq "y"
  314.   skip InstallHardDisk
  315. endif
  316. if $HardDisk eq "yes"
  317.   skip InstallHardDisk
  318. endif
  319. skip Continue
  320.  
  321. lab InstallHardDisk
  322. echo noline "*N Please enter the DEVICE NAME of your desired partition (i.e. 'DH0:'): "
  323. set > nil: Device [Return]
  324. set > nil: Device ?
  325. if not exists $Device
  326.   echo " Wrong device, $Device does not exist! Try again..."
  327.   skip back InstallHardDisk
  328. endif
  329. echo noline "*n Installing HardDisk-Icon to $Device..."
  330. cd $Device
  331. IU > NIL: dcw Magic:XEN-Icons/SPECIAL/HD.info Disk.info
  332. cd Magic:
  333. echo "..*e[33mDONE*e[0m*n"
  334. skip back HardDisk
  335.  
  336.  
  337. lab Continue
  338. echo "*e[1;1H*e[J"
  339. echo noline "*n IMPORTANT: Do you have a SYQUEST (removable cartridge disk drive)? "
  340. set > nil: Syquest ?
  341. if $Syquest eq "ja"
  342.   skip InstallSyquest
  343. endif
  344. if $Syquest eq "j"
  345.   skip InstallSyquest
  346. endif
  347. if $Syquest eq "y"
  348.   skip InstallSyquest
  349. endif
  350. if $Syquest eq "yes"
  351.   skip InstallSyquest
  352. endif
  353. skip Continue
  354.  
  355. lab InstallSyquest
  356. echo noline "*n Please enter the DEVICE NAME of your Syquest (for example 'DH1:'): "
  357. set > NIL: Dev [Return]
  358. set > NIL: Dev ?
  359. if not exists $Dev
  360.   echo " Wrong device, $Dev does not exist! Try again..."
  361.   skip back InstallSyquest
  362. endif
  363. echo noline "*n Installing Syquest-Icon to $Dev..."
  364. cd $Dev
  365. IU > NIL: dcw Magic:XEN-Icons/SPECIAL/Syquest.info Disk.info
  366. cd Magic:
  367. echo "...*e[33mDONE*e[0m"
  368. wait 6
  369.  
  370. lab Continue
  371.  
  372. echo "*e[1;1H*e[J"
  373. echo "*n Now, you are going to decide which Icon you want to have installed for your"
  374. echo " Preferences-Drawer. As this is probably one of the most important drawers,"
  375. echo " it will get its own special Icon. You have the choice between TWO different"
  376. echo " Prefs-Icons: A small one (whose size is more compatible with the original"
  377. echo " Prefs-Icon by Commodore, or a very big one (having more details, of course)."
  378. echo " If you are not sure, I suggest you take the SMALL one. The BIG one is more"
  379. echo " convenient for resolutions of 800x600 or higher. It's up to you:"
  380. lab Retry
  381. echo noline "*n Which Prefs-Drawer-Icon should be installed (enter BIG or SMALL)? "
  382. set > NIL: Prefs ?
  383. if $Prefs eq "SMALL"
  384.   Echo noline "*n Installing SMALL Prefs-Icon..."
  385.   IU > NIL: cw XEN-Icons/SPECIAL/Prefs.info SYS:Prefs.info
  386.   echo "..*e[33mDONE*e[0m"
  387. else
  388.   if $Prefs eq "BIG"
  389.     Echo noline "*n Installing BIG Prefs-Icon..."
  390.     IU > NIL: cw XEN-Icons/SPECIAL/Prefs2.info SYS:Prefs.info
  391.     echo "..*e[33mDONE*e[0m"
  392.   else
  393.     echo " You MUST enter either *"SMALL*" or *"BIG*"! Try again..."
  394.     skip back Retry
  395.   endif
  396. endif
  397.  
  398.  
  399. wait 4
  400.  
  401. echo "*e[1;1H*e[J"
  402. echo noline "*n Installing MagicWB-Fonts to FONTS:..."
  403. copy > NIL: Fonts/#? TO FONTS: all
  404. echo ".................*e[33mDONE*e[0m"
  405.  
  406.  
  407. set PattPath SYS:Prefs/Patterns
  408. if not exists $PattPath
  409.   makedir $PattPath
  410. endif
  411. version >NIL: exec.library 39
  412. if warn
  413.   echo noline "*N*n*n Installing ONE PATTERN to SYS:Prefs/Patterns*n (drawer will be created)..."
  414.   copy > NIL: Patterns/Patterns2.0/Marble_CLASSIC TO $PattPath
  415. else
  416.   echo noline "*N*n*n Installing TWO PATTERNS to SYS:Prefs/Patterns*n (drawer will be created)..."
  417.   copy > NIL: Patterns/Marble_CLASSIC TO $PattPath
  418.   copy > NIL: Patterns/MarbleDark TO $PattPath
  419. endif
  420. echo "..*e[33mDONE*e[0m"
  421.  
  422. resident IU remove
  423. assign Magic: remove
  424.  
  425. Echo "*n*N*n*n*n The installation is now successfully finished."
  426. echo "*n*n     [Return]"
  427. set > nil: Return ?
  428. echo "*e[1;1H*e[J"
  429. echo "*n Finally some important information:*n"
  430. echo "*n There are some things you immediately have to do after this installation"
  431. echo " is finished."
  432. echo "*n- You have to change the SCREENMODE-Preferences to a proportional resolution"
  433. echo "  with at least 8 COLORS! Proportional resolutions are for example: 640x480,"
  434. echo "  640x512, 800x600, 1024x768, 1280x1024 etc. But NOT a resolution like"
  435. echo "  640x256 (=MedRes Pal) or similar resolutions where the horizontal pixels"
  436. echo "  are nearly twice as much than the vertical amount of pixels. With these"
  437. echo "  'non-square-pixel' resolutions the Icons and Fonts are being distorted."
  438. echo "  So you have to use a proportional resolution to enjoy *e[32mMagicWB*e[0m as the"
  439. echo "  author has planned it to be!"
  440. echo "*n  And you MUST select at least an 8 COLOR Workbench!"
  441. echo "*e[J*n*e[32m  Now, by pressing RETURN, the ScreenMode-Prefs will appear. Please select"
  442. echo "  a square-pixel-screenmode with 8 colors and click 'SAVE'...*e[0m"
  443. echo "  (if a system requester asks you to close all window, just move the"
  444. echo "  requester aside and wait until this installation is finished, then"
  445. echo "  it will disappear)"
  446. echo noline "*n     [Return]"
  447. set > nil: Return ?
  448. SYS:Prefs/Screenmode
  449. echo "*e[1;1H*e[J*n*n- Second, you can find the patterns 'Marble_CLASSIC' and 'MarbleDark'"
  450. echo "  in the SYS:Prefs/Patterns directory. These are the only patterns that have"
  451. echo "  been installed to save diskspace. There are plenty of other patterns in"
  452. echo "  the MagicWB/Patterns directory (altogether 35 patterns!) that you can copy"
  453. echo "  to SYS:Prefs/Patterns if required.*n"
  454. echo "  If you are user of the OS2.0 or OS2.1 you will have to install the program"
  455. echo "  NickPrefs to use the Patterns of *e[32mMagicWB*e[0m. Please consult the documentation."
  456. echo "*n- Programmers should take a look into the MagicWB/XEN-Icons/SPECIAL drawer!"
  457. echo "  Here you can find Icons for your programs that have logically not been"
  458. echo "  installed with this installation: AmigaGuide, ReadMe, templates, etc.*n"
  459. echo "*n*n     [Return]"
  460. set > nil: Return ?
  461. echo "*e[1;1H*e[J"
  462. echo "*n*N*n Thank you for supporting the author of *e[32mMagicWB*e[0m by your registration, making"
  463. echo " future versions of *e[32mMagicWB*e[0m possible. Always remember:"
  464. echo "*n*n*e[1;32m          ______________________________________________________"
  465. echo "                                                                 "
  466. echo "            A PRODUCT WORTH USING IS ALSO WORTH BEING SUPPORTED  "
  467. echo "           *e[1;31m_____________________________________________________ "
  468. echo "*n*N                   MagicWB © 1993 by Martin Huttenloher"
  469. echo "*n                        - Released as SHAREWARE -*n*n"
  470. echo "*e[32m   If you would like to get the full version (MagicWB 1.5) you will have"
  471. echo "          to register! See 'MagicWB.guide' for more information.*e[0m"
  472. echo "*n*n   [Return]"
  473. set > nil: Return ?
  474. echo "*e[1;1H*e[J"
  475. echo "*n*n*n Now have much fun with *e[32mMagicWB*e[0m!*n*n To enjoy MagicWB immediately you have to reset your AMIGA first,*n so that all configurations will be set properly!*n*n Bye, bye...*n*N"
  476. echo "*n*n     [Return]"
  477. set > nil: Return ?
  478. quit
  479.